Remove GdkBitmap
authorMatthias Clasen <mclasen@redhat.com>
Sun, 27 May 2007 01:39:28 +0000 (01:39 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Sun, 27 May 2007 01:39:28 +0000 (01:39 +0000)
2007-05-26   Matthias Clasen  <mclasen@redhat.com>

        * gdk/gdk-overrides.txt: Remove GdkBitmap
        * gtk/gtk-sections.txt:
        * gtk/tmpl/gtkenums.sgml:
        * gdk/tmpl/rgb.sgml:
        * gdk/tmpl/gcs.sgml:
        * gdk/tmpl/pango_interaction.sgml:
        * gdk/tmpl/windows.sgml: Additions

svn path=/trunk/; revision=17945

docs/reference/ChangeLog
docs/reference/gdk/gdk-overrides.txt
docs/reference/gdk/tmpl/gcs.sgml
docs/reference/gdk/tmpl/pango_interaction.sgml
docs/reference/gdk/tmpl/rgb.sgml
docs/reference/gdk/tmpl/windows.sgml
docs/reference/gtk/gtk-sections.txt
docs/reference/gtk/tmpl/gtkenums.sgml

index 1bf96279924de0c1dad4056507acae1b2425495f..dd4771256700e4b75734b2eb9ccfd4db8940531c 100644 (file)
@@ -1,3 +1,13 @@
+2007-05-26   Matthias Clasen  <mclasen@redhat.com>
+
+       * gdk/gdk-overrides.txt: Remove GdkBitmap
+       * gtk/gtk-sections.txt:
+       * gtk/gtkenums.sgml:
+       * gdk/rgb.sgml:
+       * gdk/gcs.sgml:
+       * gdk/tmpl/pango_interaction.sgml:
+       * gdk/tmpl/windows.sgml: Additions
+
 2007-05-26   Matthias Clasen  <mclasen@redhat.com>
 
        * gdk-pixbuf/gdk-pixbuf-sections.txt: 
index 4785f77d302763e3e3a1f5c83a745295939a0dbe..2ca3c1fded2259ceeba15fb5ac9298196e2094f2 100644 (file)
@@ -15,13 +15,6 @@ struct GdkPixmap
 };
 </STRUCT>
 <STRUCT>
-<NAME>GdkBitmap</NAME>
-struct GdkBitmap
-{
-  gpointer user_data;
-};
-</STRUCT>
-<STRUCT>
 <NAME>GdkDrawable</NAME>
 struct GdkDrawable
 {
index bb0a504e306404a50fb6cb697dd777295298ed54..f5a16d35c700849d1c7fdc42098f373b0d8cd28d 100644 (file)
@@ -103,22 +103,22 @@ images, only %GDK_COPY, %GDK_XOR and %GDK_INVERT are generally
 useful. For bitmaps, %GDK_AND and %GDK_OR are also useful.
 </para>
 
-@GDK_COPY: 
-@GDK_INVERT: 
-@GDK_XOR: 
-@GDK_CLEAR: 
-@GDK_AND: 
-@GDK_AND_REVERSE: 
-@GDK_AND_INVERT: 
-@GDK_NOOP: 
-@GDK_OR: 
-@GDK_EQUIV: 
-@GDK_OR_REVERSE: 
-@GDK_COPY_INVERT: 
-@GDK_OR_INVERT: 
-@GDK_NAND: 
-@GDK_NOR: 
-@GDK_SET: 
+@GDK_COPY: <literal>dst = src</literal>
+@GDK_INVERT: <literal>dst = NOT dst</literal>
+@GDK_XOR: <literal>dst = src XOR dst</literal>
+@GDK_CLEAR: <literal>dst = 0</literal>
+@GDK_AND: <literal>dst = dst AND src</literal>
+@GDK_AND_REVERSE: <literal>dst = src AND (NOT dst)</literal>
+@GDK_AND_INVERT: <literal>dst = (NOT src) AND dst</literal>
+@GDK_NOOP: <literal>dst = dst</literal>
+@GDK_OR: <literal>dst = src OR dst</literal>
+@GDK_EQUIV: <literal>dst = (NOT src) XOR dst</literal>
+@GDK_OR_REVERSE: <literal>dst = src OR (NOT dst)</literal>
+@GDK_COPY_INVERT: <literal>dst = NOT src</literal>
+@GDK_OR_INVERT: <literal>dst = (NOT src) OR dst</literal>
+@GDK_NAND: <literal>dst = (NOT src) OR (NOT dst)</literal>
+@GDK_NOR: <literal>dst = (NOT src) AND (NOT dst)</literal>
+@GDK_SET: <literal>dst = 1</literal>
 
 <!-- ##### FUNCTION gdk_gc_new ##### -->
 <para>
index a736659c885478ec68fef07c055cdfed09d04d28..ac61ed9880a72b8465151b457fe282814d70dc68 100644 (file)
@@ -240,6 +240,14 @@ rendering the text.
 @attr: the #PangoAttribute.
 @embossed: the embossed bitmap.
 
+<!-- ##### STRUCT GdkPangoAttrEmbossColor ##### -->
+<para>
+A Pango text attribute specifying the color to emboss text with.
+</para>
+
+@attr: the #PangoAttribute
+@color: the color
+
 <!-- ##### STRUCT GdkPangoAttrStipple ##### -->
 <para>
 A Pango text attribute containing a stipple bitmap to be used when
index 1d61fc439ef5cb49df106a59259de3ad9bea4efb..d61da71768226e4abace7d5ce315105c820a5ed3 100644 (file)
@@ -325,8 +325,9 @@ A private data structure which maps color indices to actual RGB
 colors. This is used only for gdk_draw_indexed_image().
 </para>
 
-@colors: 
-@n_colors: 
+@colors: The colors, represented as 0xRRGGBB integer values.
+@n_colors: The number of colors in the cmap.
+
 
 <!-- ##### FUNCTION gdk_rgb_gc_set_foreground ##### -->
 <para>
index 3dc0b8686d4e81efe310272f05ae69c50c96b5fb..25687836f18b7e79921857eb1633f61c47ad2865 100644 (file)
@@ -202,7 +202,8 @@ window types.
 
 @GDK_WINDOW_TYPE_HINT_NORMAL: Normal toplevel window.
 @GDK_WINDOW_TYPE_HINT_DIALOG: Dialog window.
-@GDK_WINDOW_TYPE_HINT_MENU: Window used to implement a menu.
+@GDK_WINDOW_TYPE_HINT_MENU: Window used to implement a menu; GTK+ uses 
+  this hint only for torn-off menus, see #GtkTearoffMenuItem.
 @GDK_WINDOW_TYPE_HINT_TOOLBAR: Window used to implement toolbars.
 @GDK_WINDOW_TYPE_HINT_SPLASHSCREEN: Window used to display a splash 
   screen during application startup.
@@ -211,12 +212,14 @@ window types.
 @GDK_WINDOW_TYPE_HINT_DOCK: Used for creating dock or panel windows.
 @GDK_WINDOW_TYPE_HINT_DESKTOP: Used for creating the desktop background 
 window.
-@GDK_WINDOW_TYPE_HINT_DROPDOWN_MENU: 
-@GDK_WINDOW_TYPE_HINT_POPUP_MENU: 
-@GDK_WINDOW_TYPE_HINT_TOOLTIP: 
-@GDK_WINDOW_TYPE_HINT_NOTIFICATION: 
-@GDK_WINDOW_TYPE_HINT_COMBO: 
-@GDK_WINDOW_TYPE_HINT_DND: 
+@GDK_WINDOW_TYPE_HINT_DROPDOWN_MENU: A menu that belongs to a menubar.
+@GDK_WINDOW_TYPE_HINT_POPUP_MENU: A menu that does not belong to a menubar, 
+  e.g. a context menu.
+@GDK_WINDOW_TYPE_HINT_TOOLTIP: A tooltip.
+@GDK_WINDOW_TYPE_HINT_NOTIFICATION: A notification - typically a "bubble" 
+  that belongs to a status icon.
+@GDK_WINDOW_TYPE_HINT_COMBO: A popup from a combo box.
+@GDK_WINDOW_TYPE_HINT_DND: A window that is used to implement a DND cursor.
 
 <!-- ##### STRUCT GdkWindowAttr ##### -->
 <para>
@@ -453,6 +456,15 @@ Deprecated equivalent of g_object_unref()
 @setting: 
 
 
+<!-- ##### FUNCTION gdk_window_set_opacity ##### -->
+<para>
+
+</para>
+
+@window: 
+@opacity: 
+
+
 <!-- ##### FUNCTION gdk_window_move ##### -->
 <para>
 
index 77b514e3f12ee0d87a4dfcc3ab56cfda1e498ffc..4cdb79f7a1b4ae2a975eb40b23b253bed4e1e598 100644 (file)
@@ -5932,6 +5932,7 @@ GtkVisibility
 GtkWindowPosition
 GtkWindowType
 GtkSortType
+GtkDragResult
 
 <SUBSECTION Private>
 GtkMenuCallback
index 0f6dc9d1b9a9536c0e807f056547d65d7c832112..b1e551033a95f1c766d5f4c943751377e5bd3ff4 100644 (file)
@@ -480,3 +480,19 @@ Determines the direction of a sort.
 @GTK_SORT_ASCENDING: Sorting is in ascending order.
 @GTK_SORT_DESCENDING: Sorting is in descending order.
 
+<!-- ##### ENUM GtkDragResult ##### -->
+<para>
+Gives an indication why a drag operation failed. 
+The value can by obtained by connecting to the
+#GtkWidget::drag-failed signal.
+</para>
+
+@GTK_DRAG_RESULT_SUCCESS: The drag operation was successful
+@GTK_DRAG_RESULT_NO_TARGET: No suitable drag target
+@GTK_DRAG_RESULT_USER_CANCELLED: The user cancelled the drag operation
+@GTK_DRAG_RESULT_TIMEOUT_EXPIRED: The drag operation timed out
+@GTK_DRAG_RESULT_GRAB_BROKEN: The pointer or keyboard grab used
+   for the drag operation was broken
+@GTK_DRAG_RESULT_ERROR: The drag operation failed due to some 
+   unspecified error
+